home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / djgpp / include / regexcmp.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-08-11  |  365 b   |  20 lines

  1. /*
  2.  * DESQview/X System Library, Copyright Quarterdeck Office Systems (c) 1991
  3.  */
  4.  
  5. #include <stddef.h>
  6.  
  7. #ifdef __WATCOMC__
  8. #define CDECL cdecl
  9. #else
  10. #define CDECL
  11. #endif
  12.  
  13. #ifndef NO_PROTO
  14. extern char * CDECL regex(char *, char *);
  15. extern char * CDECL regcmp(char *, ...);
  16. #else
  17. extern char * CDECL regex();
  18. extern char * CDECL regcmp();
  19. #endif
  20.